home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9209.ARJ / 1009073A < prev    next >
Text File  |  1992-05-11  |  261b  |  12 lines

  1.  
  2. short train_weights(target, net, eta, w, x, N)
  3.    short target, net, w[], x[], N;
  4.    float eta;
  5. {
  6.    short delta_w, i;
  7.    for(i=0; i<N+1; i++){
  8.       delta_w = eta*x[i]*(target-net);
  9.       w[i]    = w[i] + delta_w;
  10.    }
  11. }  /* ends train_weights */
  12.